home *** CD-ROM | disk | FTP | other *** search
/ C++ für Kids / C++ for kids.iso / Buch / Bubble1.h < prev    next >
C/C++ Source or Header  |  1999-01-25  |  1KB  |  31 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef Bubble1H
  3. #define Bubble1H
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include <vcl\Dialogs.hpp>
  10. //---------------------------------------------------------------------------
  11. class TForm1 : public TForm
  12. {
  13. __published:    // IDE-verwaltete Komponenten
  14.     TMemo *Memo1;
  15.     TOpenDialog *OpenDialog1;
  16.     TButton *Button1;
  17.     TButton *Button2;
  18.     TButton *Button3;
  19.     void __fastcall Button1Click(TObject *Sender);
  20.     void __fastcall FormCreate(TObject *Sender);
  21.     void __fastcall Button2Click(TObject *Sender);
  22.     void __fastcall Button3Click(TObject *Sender);
  23. private:    // Benutzer-Deklarationen
  24. public:        // Benutzer-Deklarationen
  25.     __fastcall TForm1(TComponent* Owner);
  26. };
  27. //---------------------------------------------------------------------------
  28. extern TForm1 *Form1;
  29. //---------------------------------------------------------------------------
  30. #endif
  31.